home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / sbin / update-dictcommon-aspell < prev    next >
Text File  |  2008-06-04  |  809b  |  44 lines

  1. #!/usr/bin/perl -w
  2.  
  3. use Debian::DictionariesCommon q(:all);
  4.  
  5. dico_checkroot ();
  6.  
  7. my $cachedir   = "/var/cache/dictionaries-common";
  8. my $class      = "aspell";
  9. my %locales    = ();
  10.  
  11. updatedb ($class);
  12. build_emacsen_support ();
  13. build_jed_support ();
  14.  
  15. system ("aspell-autobuildhash") == 0
  16.     or die "Error running aspell-autobuildhash\n";
  17.  
  18. __END__
  19.  
  20. =head1 NAME
  21.  
  22. update-dictcommon-aspell - rebuild aspell database and emacsen stuff
  23.  
  24. =head1 SYNOPSIS
  25.  
  26.  update-dictcommon-aspell
  27.  
  28. =head1 DESCRIPTION
  29.  
  30. WARNING: Not to be used from the command line unless you know very well what you are doing.
  31.  
  32. This script, when called from aspell dict package postinst or postrm will
  33. rebuild aspell database as well as jed and emacsen stuff
  34.  
  35. =head1 SEE ALSO
  36.  
  37. The dictionaries-common policy
  38.  
  39. =head1 AUTHORS
  40.  
  41. Rafael Laboissiere
  42.  
  43. =cut
  44.